home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TeX 1995 July
/
TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO
/
web
/
noweb
/
src
/
shell
/
noroots
< prev
next >
Wrap
Text File
|
1995-02-24
|
369b
|
15 lines
#!/bin/sh
#
# Copyright 1991 by Norman Ramsey. All rights reserved.
# See file COPYRIGHT for more information.
# set -x
LIB=|LIBDIR|
$LIB/markup $* | nawk '
/^@defn / { chunk=substr($0,7) ; defined[chunk]=1 }
/^@use / { chunk=substr($0,6) ; used[chunk]=1 }
END {
for (chunk in defined) {
if (defined[chunk]==1 && used[chunk]==0) printf "<<%s>>\n", chunk
}
}'